From 582e590456379bcf54fb7b7bdb6635188b341b13 Mon Sep 17 00:00:00 2001 From: oliskoli Date: Sun, 7 May 2006 18:09:23 +0000 Subject: [PATCH] Add new module 'axim_gpb', a track reader for Dell Axim Navigation System (.gpb) files. --- gpsbabel/Makefile.in | 3 ++- gpsbabel/vecs.c | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/gpsbabel/Makefile.in b/gpsbabel/Makefile.in index 7f586872b..8a7f66da5 100644 --- a/gpsbabel/Makefile.in +++ b/gpsbabel/Makefile.in @@ -48,7 +48,7 @@ FMTS=magproto.o gpx.o geo.o mapsend.o mapsource.o garmin_tables.o \ vcf.o overlay.o kml.o google.o lowranceusr.o an1.o tomtom.o \ tef_xml.o maggeo.o pathaway.o vitosmt.o gdb.o bcr.o coto.o \ ignrando.o stmwpp.o msroute.o cst.o nmn4.o mag_pdb.o compegps.o \ - yahoo.o unicsv.o wfff_xml.o garmin_txt.o + yahoo.o unicsv.o wfff_xml.o garmin_txt.o axim_gpb.o FILTERS=position.o duplicate.o arcdist.o polygon.o smplrout.o \ reverse_route.o sort.o stackfilter.o trackfilter.o discard.o \ @@ -182,6 +182,7 @@ an1.o: an1.c defs.h config.h queue.h gbtypes.h cet.h cet_util.h inifile.h \ an1sym.h arcdist.o: arcdist.c defs.h config.h queue.h gbtypes.h cet.h cet_util.h \ inifile.h filterdefs.h grtcirc.h +axim_gpb.o: axim_gpb.c defs.h queue.h gbtypes.h bcr.o: bcr.c defs.h config.h queue.h gbtypes.h cet.h cet_util.h inifile.h \ garmin_tables.h brauniger_iq.o: brauniger_iq.c defs.h config.h queue.h gbtypes.h cet.h \ diff --git a/gpsbabel/vecs.c b/gpsbabel/vecs.c index d1fe8d628..fa96a7ab6 100644 --- a/gpsbabel/vecs.c +++ b/gpsbabel/vecs.c @@ -34,6 +34,7 @@ typedef struct { } vecs_t; extern ff_vecs_t an1_vecs; +extern ff_vecs_t axim_gpb_vecs; extern ff_vecs_t bcr_vecs; extern ff_vecs_t brauniger_iq_vecs; extern ff_vecs_t cetus_vecs; @@ -542,6 +543,12 @@ vecs_t vec_list[] = { "Garmin MapSource - txt (tab delimited)", "txt" }, + { + &axim_gpb_vecs, + "axim_gpb", + "Dell Axim Navigation System (.gpb) file format", + "gpb" + }, { NULL, NULL, -- 2.30.2